home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / CMPLTPAS / ROOTER.PAS < prev    next >
Pascal/Delphi Source File  |  1986-01-18  |  256b  |  14 lines

  1. PROGRAM Rooter;
  2.  
  3. VAR 
  4.   R,S : Real;
  5.  
  6. BEGIN
  7.   Writeln('>>Square root calculator<<');
  8.   Writeln;
  9.   Write('>>Enter the number: ');
  10.   Readln(R);
  11.   S := Sqrt(R);
  12.   Writeln('  The square root of ',R:7:7,' is ',S:7:7,'.')
  13. END.
  14.